home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
OOP_Course
/
Examples
/
ExtendDraw
/
Rectangle.bproj
/
AShape.h
next >
Wrap
Text File
|
1992-12-19
|
315b
|
23 lines
#import <objc/Object.h>
#import <dpsclient/wraps.h>
#import <appkit/View.h>
@interface AShape:Object
{
NXRect bbox;
int fill;
float shade;
}
-initShapeWithBBox:(NXRect *)r;
-setFill:(int)i;
-(int)fill;
-setShade:(float)s;
-(float)shade;
-setBbox:(NXRect *)r;
-(NXRect *)bbox;
-drawShape;
@end